{

Open-block operator. Used to start a block of statements.

}

Close-block operator. Used to end a block of statements.


Example


if( x<4 ) {

   print(x);

   x = x + 1

}